home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20041116-20060924 / 000263_fdc@columbia.edu_Thu Mar 9 09:38:39 2006.msg < prev    next >
Internet Message Format  |  2020-01-01  |  1KB

  1. Path: newsmaster.cc.columbia.edu!not-for-mail
  2. From: Frank da Cruz <fdc@columbia.edu>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: Newbie question
  5. Date: 9 Mar 2006 14:38:28 GMT
  6. Organization: Columbia University
  7. Lines: 24
  8. Message-ID: <slrne10ff4.8bc.fdc@sesame.cc.columbia.edu>
  9. References: <1141909022.995438.248800@j33g2000cwa.googlegroups.com>
  10. Reply-To: fdc@columbia.edu
  11. NNTP-Posting-Host: sesame.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1141915108 19679 128.59.59.56 (9 Mar 2006 14:38:28 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 9 Mar 2006 14:38:28 GMT
  15. User-Agent: slrn/0.9.8.0 (SunOS)
  16. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:15514
  17.  
  18. On 2006-03-09, christopher.simmons@hospira.com <christopher.simmons@hospira.com> wrote:
  19. : Can anyone help point out what I'm doing wrong in this script?  I'd
  20. : like to make a script that just calls a number and hangs up after a few
  21. : seconds.
  22. :
  23. : #!/usr/local/bin/wermit +
  24. : set modem hangup-method modem-command
  25. : set modem type usrobotics
  26. : set line /dev/ttyS0
  27. : set speed 57600
  28. : set dial method tone
  29. : set dial connect on
  30. : set exit on-disconnect on
  31. : dail 9876543211
  32. :
  33. : This script typically results with the error message:
  34. :     ?Not a command or macro name: "dial"
  35. :
  36. : I know I probably need some kind of delay but what how do I get around
  37. : this error message?  From the kermit command prompt, it works fine.
  38. :
  39. You misspelled "dial".
  40.  
  41. - Frank